diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx b/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx index adc57ed9..d98bd4c7 100644 --- a/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx +++ b/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx @@ -8,6 +8,7 @@ import { Shell } from "@/components/shell" import { getBasicContractTemplates } from "@/lib/basic-contract/service" import { searchParamsTemplatesCache } from "@/lib/basic-contract/validations" import { BasicContractTemplateTable } from "@/lib/basic-contract/template/basic-contract-template" +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { @@ -33,9 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 기본계약서 템플릿 관리 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 기본계약서 템플릿 관리 + </h2> + <InformationButton pageCode="evcp/basic-contract-template" /> + </div> <p className="text-muted-foreground"> 기본계약서를 비롯하여 초기 서명이 필요한 문서를 등록하고 편집할 수 있습니다. 활성화된 템플릿이 서명 요청의 리스트에 나타나게 됩니다..{" "} {/* <span className="inline-flex items-center whitespace-nowrap"> |
